home *** CD-ROM | disk | FTP | other *** search
- #WP0 5 5 7 7.5 15 8
- /*
- * The line above is read by the page layout code to
- * determine the basic column layout. The items are, in order:
- * - WebPrint version code.
- * - Left hand margin to start of web page data.
- * - Gap to leave between columns.
- * - Right hand margin.
- * - Top of column margin to the start of the web page data.
- * - Vertical gap to leave between columns.
- * - Bottom of column margin.
- * All distances are in mm and may be floating point. Margin measurements
- * are made from the edge of the printable area as declared by the printer
- * driver. Of course it may lie. The functions given in this file add
- * decoration to the column fragments and the page as a whole within
- * the margins and gap areas. That is, they do not generally overwrite
- * the web page data itself, although they may.
- */
-
- /*
- * And here are the same numbers so they can be used within the
- * script. (top, bottom, left, right margin, vertial, horixontal gap).
- */
- static lm = 5;
- static hg = 5;
- static rm = 7;
- static tm = 7.5;
- static vg = 15;
- static bm = 8;
-
- /*
- * WP_decorate_page
- *
- * Add decoration to the given gob. The gob is the whole page as set
- * out so far.
- */
- static
- WP_decorate_page(pg, xmin, ymin, xmax, ymax, pg_num, no_background)
- {
- auto fw = 5.0; /* The width the of fade round the edge. */
- auto fh = 4.0; /* The font size. */
- auto sw = 0.25; /* Frame stroke width in mm. */
- auto info;
- auto bg;
- auto icon;
- auto pg_str;
- auto pg_width;
-
- gc_save();
-
- gc_default();
-
- /*
- * Stroke its edge.
- gc_save();
- rect(xmin + sw, ymin + sw, xmax - xmin - 3*sw, ymax - ymin - 3*sw);
- gc_draw_style("stroked");
- gc_stroke_width(sw);
- gc_color(0.0, 0.0, 0.0);
- gc_opacity(1);
- bg = draw(path());
- gc_restore();
-
- pg = pg over bg;
- */
-
- /*
- * Place the page number icon with the page number in it over everything
- * in the bottom right corner.
- */
- pg_str = " " + string(pg_num) + " ";
- move(0, 0);
- gc_font(SansSerifBold, fh);
- pg_width = WP_text_width(pg_str);
- path();
- gc_opacity(1);
- gc_color(0.0, 0.0, 0.0);
- rect(xmax - pg_width, ymin, pg_width, 5.0);
- pg := path();
- gc_color(1.0, 1.0, 1.0);
- move(xmax, ymin + 1.0);
- pg := text("\t" + pg_str, NULL, "0R");
-
- gc_opacity(1);
- gc_color(1.0, 1.0, 1.0);
- pg = pg over page_fill();
-
- gc_restore();
-
- return pg;
- }
-
- static
- WP_decorate_column(pg, xmin, ymin, xmax, ymax, title, url)
- {
- auto sz = 4.0; /* Shadow size in mm. */
- auto sw = 0.25; /* Frame stroke width in mm. */
- auto hh = 4.0; /* The height of the header block. */
- auto fh = 3.0; /* The font size. */
- auto bw = 1; /* Width of the bevel along the edge. */
- auto t;
-
- gc_save();
-
- gc_default();
-
- pg = WP_bevel(pg, xmin, ymin, xmax, ymax, 1, 0);
-
- /*
- * Place a label box on top with the title in white.
- * Then modify our ymax to reflect the taller box.
- */
- gc_opacity(1);
- gc_color(0.0, 0.0, 0.0);
- move(xmin + 1.0, ymax + hh * 0.25);
- gc_font(SansSerifBoldItalic, fh);
- pg := WP_text(xmax - xmin - 2, title);
- rect(xmin, ymax, xmax - xmin, hh);
- gc_draw_style("stroked");
- gc_stroke_width(sw);
- pg := path();
- ymax += hh;
-
- /*
- * Place a label box at the bottom with the url in it.
- * Then modify our ymin to reflect the taller box.
- */
- hh *= 0.666;
- fh *= 0.666;
- gc_opacity(1);
- gc_color(0.0, 0.0, 0.0);
- move(xmin + 1.0, ymin - hh * 0.75);
- gc_font(SansSerifBold, fh);
- pg := WP_text(xmax - xmin - 2, url);
- rect(xmin, ymin - hh, xmax - xmin, hh);
- pg := path();
- ymin -= hh;
-
- /*
- * Put a black frame just outside the updated area.
- */
- rect(xmin, ymin, xmax - xmin, ymax - ymin);
- pg := path();
-
- gc_restore();
-
- return pg;
- }
-
- static
- WP_bevel(pg, xmin, ymin, xmax, ymax, bw, sunken)
- {
- auto sw = 0.25; /* Frame stroke width in mm. */
-
- gc_save();
- gc_color(0, 0, 0);
- gc_draw_style("stroked");
- gc_stroke_width(sw);
- rect(xmin, ymin, xmax - xmin, ymax - ymin);
- pg = path() over pg;
- gc_restore();
- return pg;
- }
-
- static
- WP_text_width()
- {
- /*
- * Parameters not assigned to formal parameters are formed
- * into an array and assigned to the auto variable vargs...
- */
- auto vargs;
- auto x, y;
- auto nx, ny;
-
- current_point(&x, &y);
- call(text, vargs);
- current_point(&nx, &ny);
- move(x, y);
- return nx - x;
- }
-
- static
- WP_trim_text(avail_width)
- {
- /*
- * Parameters not assigned to formal parameters are formed
- * into an array and assigned to the auto variable vargs...
- */
- auto vargs;
- auto full_text;
- auto trimed_text;
- auto ellipses = "\342\200\246"; /* ... in UTF8 Unicode. */
- auto nchars;
-
- full_text = vargs[0];
- if (call(WP_text_width, vargs) < avail_width)
- return full_text;
- avail_width -= WP_text_width(ellipses);
- nchars = nels(full_text);
- while
- (
- nels(trimed_text = interval(full_text, 0, nchars)) != 0
- &&
- (
- vargs[0] = trimed_text,
- call(WP_text_width, vargs) > avail_width
- )
- )
- {
- --nchars;
- /*
- * The text we're trimming is UTF-8 encoded. If it's a multi-byte
- * character, move back past the start of the character.
- */
- if (full_text[nchars - 1] >= "\200")
- {
- while (full_text[nchars - 1] < "\300")
- --nchars;
- --nchars;
- }
- }
- return trimed_text + ellipses;
- }
-
- /*
- * WP_text
- *
- * Set text within a limited horizontal width. Condenses the text up to 50%
- * if it is too long, then clips it. Returns a gob (not a text object). Leaves
- * current point end of text.
- *
- * Parameters:
- * avail_width The width within which the text must fit, in user space.
- * ... Further parameters as required for the text() function.
- */
- static
- WP_text()
- {
- /*
- * Parameters not assigned to any formal parameters are formed
- * into an array and assigned to the auto variable vargs...
- */
- auto vargs;
- auto actual_width;
- auto x, y;
- auto xx, yy;
- auto condense;
- auto t;
- auto e;
-
- vargs[1] = call(WP_trim_text, vargs);
- return draw(call(text, interval(vargs, 1)));
-
- gc_save();
- current_point(&x, &y);
- call(text, vargs);
- current_point(&actual_width, &y);
- actual_width -= x;
- move(x, y);
- if (actual_width > avail_width)
- {
- /*
- condense = avail_width / actual_width;
- if (condense < .5)
- condense = .5;
- gc_font_scale(condense, 1.0);
- */
-
- actual_width = avail_width;
- move(x + avail_width, y);
- e = draw(text("\t\342\200\246", NULL, "0R")); /* Ellipses */
- move(0, 0);
- text("\342\200\246"); /* Ellipses */
- current_point(&xx, &yy);
- avail_width -= xx;
-
- move(x, y);
- t = draw(call(text, vargs));
- rect(x - 1, y - 10000, avail_width + 1, 20000);
- gc_default();
- t = e over (t in draw(path()));
- }
- else
- {
- t = draw(call(text, vargs));
- }
- gc_restore();
- move(x + actual_width, y);
- return t;
- }
-
- static
- T(x, y, str)
- {
- auto vargs;
- auto t;
- auto i;
-
- y /= 10.0;
- move(x / 10.0, y);
- t = text(str, NULL, NULL, 1);
- if (vargs != NULL)
- {
- for (i = 0; i < nels(vargs); ++i)
- {
- move(vargs[i] / 10.0, y);
- ++i;
- t += text(vargs[i], NULL, NULL, 1);
- }
- }
- return draw(t);
- }
-
-